home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / 99 Bottles hack / MyUtils / Binhex.p < prev    next >
Encoding:
Text File  |  2001-06-23  |  378 b   |  15 lines

  1. unit Binhex;
  2. interface
  3. {$IFC NOT THINK_PASCAL}
  4.     uses
  5.         Types, Files; {}
  6. {$ENDC}
  7.  
  8.     function ConvertFromBinhex (var inFSS: FSSpec; deleteBinHex, deleteOld: Boolean; startup, progress: ProcPtr): OSErr;
  9.     function ConvertToBinhex (var inFSS: FSSpec; startup, progress: ProcPtr): OSErr;
  10.  
  11. {Callbacks should be procedures that take one single Longint as argument!}
  12.  
  13.  
  14. implementation
  15. end.